水無瀬の部屋 > Programming > sample > tools > misc > sha256.h |
---|
1: //*********************************************************
2: // プロジェクト: TOOLS::SHA256 - Secure Hash Algorithm
3: // ファイル名: sha256.h
4: //*********************************************************
5: #ifndef SHA256_HEAD_INCLUDED
6: #define SHA256_HEAD_INCLUDED
7:
8:
9: //*********************************************************
10: // コンパイル環境の指定
11: //*********************************************************
12: #ifndef PRIVATE_TOOLS_HEAD_INCLUDED // 冗長ガード
13: #include <header/_tools.h>
14: #ifndef PRIVATE_TOOLS_HEAD_INCLUDED // ガード名の検査
15: #error "? PRIVATE_TOOLS_HEAD_INCLUDED"
16: #endif // #ifndef PRIVATE_TOOLS_HEAD_INCLUDED
17: #endif // #ifndef PRIVATE_TOOLS_HEAD_INCLUDED
18:
19:
20: //*********************************************************
21: // マクロ定数 の 定義
22: //*********************************************************
23: #define SHA256_HASHSIZE ( 32 ) // BYTE sha[ SHA256_HASHSIZE ]
24: #define SHA256_HASHTEXTSIZE ( 2 * SHA256_HASHSIZE ) //
25:
26:
27: //*********************************************************
28: // 構造体 の 宣言
29: //*********************************************************
30: typedef struct SHA256_CTX_tag SHA256_CTX;
31:
32:
33: //*********************************************************
34: // 関数 の 宣言
35: //*********************************************************
36: #ifdef __cplusplus
37: extern "C" {
38: #endif
39:
40:
41: // sha256.cpp
42: SHA256_CTX *SHA256_CreateAlgorithm( void );
43: bool SHA256_DestroyAlgorithm( SHA256_CTX *context );
44: bool SHA256_InitData( SHA256_CTX *context );
45: bool SHA256_AddData( SHA256_CTX *context, const void *data, int length );
46: bool SHA256_GetHash( const SHA256_CTX *context, void *digest, int bufsize );
47: bool SHA256_GetHashText( const SHA256_CTX *context, char *buf, int bufsize );
48:
49:
50: #ifdef __cplusplus
51: } // extern "C"
52: #endif
53:
54:
55: #endif // #ifndef SHA256_HEAD_INCLUDED
56:
57:
58: //** end **
参照:
sha256.cpp, main.cpp
水無瀬の部屋 > sample > tools > misc > sha256.h |
---|
このページは cpp2web が出力しました。
水無瀬 優 postmaster@katsura-kotonoha.sakura.ne.jp
http://katsura-kotonoha.sakura.ne.jp/prog/code/tools/misc/sha256_h.shtml